crypto/hmac.hmac.opad (field)

9 uses

	crypto/hmac (current package)
		hmac.go#L46: 	opad, ipad   []byte
		hmac.go#L60: 		if err := h.outer.(marshalable).UnmarshalBinary(h.opad); err != nil {
		hmac.go#L65: 		h.outer.Write(h.opad)
		hmac.go#L110: 	h.outer.Write(h.opad)
		hmac.go#L118: 	h.opad = omarshal
		hmac.go#L147: 	hm.opad = make([]byte, blocksize)
		hmac.go#L154: 	copy(hm.opad, key)
		hmac.go#L158: 	for i := range hm.opad {
		hmac.go#L159: 		hm.opad[i] ^= 0x5c